home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / MandelLambda2.Form < prev    next >
Text File  |  1994-04-13  |  226b  |  30 lines

  1. MandelLambda2
  2. {
  3.     {
  4.         mirrorx
  5.         x1=-1.5
  6.         x2= 2.0
  7.         y1=-1.15
  8.         y2= 1.15
  9.         par1.r=1.0
  10.         par1.i=0.5
  11.         bailout=2.0
  12.     }
  13.     {
  14.         c=pixel
  15.         z=pixel
  16.     }
  17.     {
  18.         z=z*z
  19.         z=z+c
  20.         z=par1*z
  21.         w=abs(z)
  22.     }
  23.     {
  24.         w>bailout
  25.     }
  26.     {
  27.         par1 : Lambda
  28.     }
  29. }
  30.